home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / init / sreadahead.conf < prev    next >
Text File  |  2009-10-10  |  880b  |  29 lines

  1. # sreadahead - Read required files in advance
  2. #
  3. # Runs the sreadahead daemon which reads data about files required
  4. # during boot and reads them into the page cache in advance of their
  5. # use.
  6.  
  7. description    "Read required files in advance"
  8.  
  9. start on starting mountall
  10. stop on stopped rc
  11.  
  12. # Forks into the background both when reading from disk and when profiling
  13. # (HDD mode won't fork, but that's ok because we'll wait for it in spawned).
  14. expect fork
  15.  
  16. # Whenkprofiling, give it three minutes after sending SIGTERM to write out
  17. # the pack file.
  18. kill timeout 180
  19.  
  20. # Don't treat a normal exit after reading finishes as a failure
  21. normal exit 0
  22.  
  23. exec /sbin/sreadahead -t 0
  24.  
  25. # Normally sreadahead will exit on its own when it finishes, unless it's
  26. # profiling - in which case we want to give the system another 30s to
  27. # finish staring the desktop and other things.
  28. pre-stop exec sleep 30
  29.